home *** CD-ROM | disk | FTP | other *** search
- ;
- ; TurboTrax Installer
- ; By
- ; Cyanide / Lsd
- ;
-
- c:requestfile >ENV:Path TITLE "Please Select Install Path..." NOICONS DRAWERSONLY SYS:
-
- IF WARN
- Skip ABORT
- ENDIF
-
- CD $Path
-
- c:requestchoice >ENV:Choice TITLE "TurboTrax Installer" BODY "Create A Drawer For TurboTrax ?" GADGETS "Yes|No"
-
- IF $Choice EQ 1
- Makedir "TurboTrax"
- CD "TurboTrax"
- Endif
-
- Echo "Creating Directories and"
- Echo "Copying Files Please Wait!"
-
- C:Copy Traxdisc1: ALL TO /TurboTrax quiet
- C:Copy Traxdisc2: ALL TO /TurboTrax quiet
- C:Copy Traxdisc3: ALL TO /TurboTrax quiet
-
- Echo "Deleting unwanted files.."
-
- C:Delete /TurboTrax/Empty.info Quiet
- C:Delete /TurboTrax/HDInstall Quiet
- C:Delete /TurboTrax/HDInstall.info Quiet
- C:Delete /TurboTrax/Install-ii Quiet
- C:Delete /TurboTrax/Readme.First Quiet
- C:Delete /TurboTrax/Readme.First.info Quiet
- C:Delete /TurboTrax/User-Startup Quiet
-
- C:Echo "Adding Assigns to your S:User-Startup"
-
- C:Echo "" >>S:User-Startup
- C:Echo ";* Begin TurboTrax" >>S:User-Startup
- C:Echo "Assign TraxDisc1: DH?:TurboTrax" >>S:User-Startup
- C:Echo "Assign TraxDisc2: DH?:TurboTrax" >>S:User-Startup
- C:Echo "Assign TraxDisc3: DH?:TurboTrax" >>S:User-Startup
- C:Echo ";* End TurboTrax" >>S:User-Startup
- C:Echo "" >>S:User-Startup
-
- C:requestchoice >ENV:Choice TITLE "TurboTrax Installer" BODY "Installation Complete" GADGETS "OK"
- Skip End
-
- Lab Abort
- C:requestchoice >ENV:Choice TITLE "TurboTrax Installer" BODY "Installation Aborted" GADGETS "OK"
-
- Lab End
-
-